home *** CD-ROM | disk | FTP | other *** search
- // BannerDoc.cpp : implementation of the CBannerDoc class
- //
-
- #include "stdafx.h"
- #include "Banner.h"
-
- #include "BannDoc.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CBannerDoc
-
- IMPLEMENT_DYNCREATE(CBannerDoc, CDocument)
-
- BEGIN_MESSAGE_MAP(CBannerDoc, CDocument)
- //{{AFX_MSG_MAP(CBannerDoc)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code!
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CBannerDoc construction/destruction
-
- CBannerDoc::CBannerDoc()
- {
- }
-
- CBannerDoc::~CBannerDoc()
- {
- }
-
- BOOL CBannerDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
-
- return TRUE;
- }
-
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CBannerDoc serialization
-
- void CBannerDoc::Serialize(CArchive& ar)
- {
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // CBannerDoc diagnostics
-
- #ifdef _DEBUG
- void CBannerDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
-
- void CBannerDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
-
- /////////////////////////////////////////////////////////////////////////////
- // CBannerDoc commands
-